home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / redakcyjne / PEBuilder / pebuilder3110a.exe / {app} / plugin / StarWind / StarWind_Start.cmd < prev    next >
OS/2 REXX Batch file  |  2005-01-17  |  998b  |  43 lines

  1. @echo off
  2. rem $Id: StarWind_Start.cmd,v 1.3 2005/01/16 23:21:11 valery Exp $
  3.  
  4. setlocal
  5.  
  6. echo StarWind: Starting the iSCSI server in console mode...
  7. echo.
  8.  
  9. echo Check if TCP/IP stack is installed...
  10. bartpe.exe -c c -q ms_tcpip
  11. if not "%errorlevel%" == "0" (
  12.     echo.
  13.     echo TCP/IP stack is not installed!
  14.     echo Please load network support before this script!
  15.     goto _err)
  16.  
  17. echo.
  18.  
  19. set tmpdir=%temp%\StarWind
  20. mkdir %tmpdir%
  21.               
  22. %systemdrive%
  23. cd \Programs\RDS\StarWind
  24.  
  25. rem Start in console mode with logging to temp directory and writable config file
  26. rem copy StarWind.conf %tmpdir%\
  27. rem StarWindService.exe --console -o -ld%tmpdir%\ -c%tmpdir%\StarWind.conf
  28.  
  29. rem Start in console mode with logging to temp directory
  30. rem StarWindService.exe --console -o -ld%tmpdir%\
  31.  
  32. rem Start in console mode with logging to the console window
  33. StarWindService.exe --console
  34.  
  35. goto _end
  36.  
  37. :_err
  38. echo.
  39. rem set errorlevel to 1 by (mis)using color
  40. color 00 
  41. :_end
  42. endlocal
  43.